Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

339
Views
Remove “email address” field from stripe checkout

I am trying to setup stripe for monthly subscription payment. Go here to view documentation I am following: stripe.com/docs/recipes/subscription-signup The problem i have to solve is the popup form contains “Email address” field but as per my application needs I already have users email address on my database. So I wanted to remove this “Email address” field from popup form. But as I have noticed the popup form is loading from stripe library https://checkout.stripe.com/checkout.js

<html>
<form action="create_subscription.php" method="POST">
  <script
    src="https://checkout.stripe.com/checkout.js" class="stripe-button"
    data-key="pk_test_P7fmeBSVkA66nU22Sk6BYUOn"
    data-image="images/marketplace.png"
    data-name="Emma's Farm CSA"
    data-description="Subscription for 1 weekly box"
    data-amount="2000"
    data-label="Sign Me Up!">
  </script>
</form>
</html>

How can I remove email address from payment popup window? Any idea? Check picture to view popup windows which asking “email address”

about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

<html>
<form action="create_subscription.php" method="POST">
  <script
    src="https://checkout.stripe.com/checkout.js" class="stripe-button"
    data-key="pk_test_P7fmeBSVkA66nU22Sk6BYUOn"
    data-image="images/marketplace.png"
    data-name="Emma's Farm CSA"
    data-description="Subscription for 1 weekly box"
    data-amount="2000"
    data-label="Sign Me Up!"
    data-email="example@mail.com">
  </script>
</form>
</html>

enter image description here

about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!